@import url('https://fonts.googleapis.com/css?family=Tangerine');
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&family=Rubik+Broken+Fax&family=Suez+One&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Frank Ruhl Libre", sans-serif;
    font-weight: 600;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: black;
    direction: rtl;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98vw;
    height: 98vh;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px 10px gold;
}

.video-background iframe {
    width: 100%;
    height: 100%;
    filter: brightness(50%);
}


/* כפתור במרכז העמוד */
.open-video-btn {
    background-color: #f4c542;
    border: none;
    padding: 20px 40px;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 0 10px 5px gold;
    transition: background-color 0.3s ease;
    z-index: 100;
    position: absolute;
    top: 20%;
}

.open-video-btn:hover {
    background-color: #d39f29;
}

/* הגדרת החלונית שמכילה את הסרטון */
.video-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;  /* גודל סרטון יוטיוב סטנדרטי */
    height: 450px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    z-index: 100;
    border: 15px solid transparent;
    background-image: linear-gradient(45deg, violet, indigo, blue, green, yellow, orange, red);
    background-size: 400% 400%;
    animation: gradientAnimation 5s ease infinite;
}

/* אנימציה של הגבול הזוהר בצבעי הקשת */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* גבולות המדמים טאבלט */
.video-popup iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* מסך מחוץ לחלונית שיסגור את החלונית אם לוחצים עליו */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 50;
}

/* פתיחת החלונית */
.open .video-popup, .open .overlay {
    display: block;
}
